home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak Vol E-12
/
(Vol E-12) May 21 2012.iso
/
Animations
/
dj
/
dj.swf
/
scripts
/
__Packages
/
mx
/
controls
/
streamingmedia
/
AbstractPlayer.as
next >
Wrap
Text File
|
2012-05-21
|
335b
|
20 lines
class mx.controls.streamingmedia.AbstractPlayer
{
function AbstractPlayer()
{
this._playing = false;
}
function isPlaying()
{
return this._playing;
}
function get playing()
{
return this.isPlaying();
}
function setPlaying(flag)
{
this._playing = flag;
}
}